今天來點輕鬆的話題,介紹一下golang的標準函式庫,
標準函式庫可以至官方網站查看 https://pkg.go.dev/std ,
如需使用此函式庫可加入至import之中,
以math函式庫為範例:
import (
"math" //增加math函式庫
)
func Abs
//Abs returns the absolute value of x.
func Abs(x float64) float64
Abs(±Inf) = +Inf
Abs(NaN) = NaN
package main
import (
"fmt"
"math"
)
func main() {
x := math.Abs(-20.2222)
fmt.Println(x)
y := math.Abs(2.123)
fmt.Println(y)
}
輸出絕對值結果:
20.2222
2.123